LINKS

HTML Organization Links - a structured list of HTML tags and their use.

Web Design - an online book - detailed information on how to structure, organize, choose color and DESIGN a web site.

Hyper g URL - HTML, Flash, Graphics, and so much more! Check it out...

Notepad Notes - Online tutorial on how to use HTML code and Notepad!
Suggests other tools to use with Notepad, to check CSS and HTML CODE,






This is a very simple complete set of code that you will be tested on:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
        "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
  <HEAD>
    <TITLE>The document title</TITLE>
  </HEAD>
  <BODY>
    <H1>Main heading</H1>
    <P>A paragraph.</P>
    <P>Another paragraph.</P>
    <UL>
      <LI>A list item.</LI>
      <LI>Another list item.</LI>
    </UL>
  </BODY>
</HTML>